Deleting and Killing

There are two general classes of commands that remove text from the buffer; delete commands and kill commands. Delete commands remove text from the buffer, and throw it away. Kill commands remove text from the buffer, but save the text in a special place called the kill buffer. Kill commands clear the kill buffer only if the previous command was not a kill command. Multiple kill commands executed in a row append text to the kill buffer. [1]##1 [Foobar] \labelwidth =
\framebox[\labelwidth]{*}
\leftmargin =
\framebox[\leftmargin]{*}
\labelsep =
\framebox[\labelsep]{*}
\listparindent =
\framebox[\listparindent]{*}

[C-D] Delete characters to the right of dot. If an argument is specified that number of characters is deleted. If no argument is specified then 1 character is deleted. In addition, if an argument is specified, then the command kills the text instead of deleting it. It fails if there are not enough characters to delete between dot and the end of the buffer. [Rubout] Delete characters to the left of dot. If an argument is specified then that number of characters is deleted. If no argument is specified then 1 character is deleted. In addition, if an argument is specified, the rubout command kills the text instead of deleting it. The command fails if there is not enough text between the start of the buffer and dot. [C-K] This is the basic killing command. If there is no argument it kills from dot to the end of the line, unless dot is at the end of line, when it kills the end of line. If a positive argument is specified, C-K kills that many lines, including the newlines. If an argument of 0 is specified, C-K kills from the start of the current line to dot. Finally, if a negative argument is specified, C-K kills backwards over abs(arg) newlines. This command fails if there arn't enough characters left in the buffer to be killed. [C-W] Kill all of the text enclosed in the region. Any argument is ignored. [C-Y] Insert the text in the kill buffer into the current buffer at dot. If an argument is specified, it specifies the number of times the text is yanked. If no argument is specified, yank the text back once. Dot is advanced over the inserted text, as if the text had been typed in normally. Always succeeds. [C-X C-O] ... Yes? ...